@font-face {
  font-family: Roboto-Light;
  src: url(../fonts/Roboto/Roboto-Light.ttf);
}
@font-face {
  font-family: Roboto-Bold;
  src: url(../fonts/Roboto/Roboto-Bold.ttf);
}
@font-face {
  font-family: Roboto-Regular;
  src: url(../fonts/Roboto/Roboto-Regular.ttf);
}

html {
   height: 100%;
}

body {
  font-family: Roboto-Light;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fff; 
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.container {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

header {
  background-color: #fff;
  color: #be0711;
  padding: 20px 0;
  text-align: center;
}

header img {
  width: 95px;
  height: auto;
}

header h1 {
  font-family: Roboto-Bold;
  margin: 10px 0 0;
}

.main-content {
  background-color: #fff; 
  padding: 20px;
  text-align: center;
}

section {
  margin-bottom: 30px;
}

h2 {
  font-family: Roboto-Regular;
  color: #333;
}

h3 {
  font-family: Roboto-Regular;
  text-align: justify;
}

p {
  color: #000;
  text-align: justify;
}

ol{
  text-align: justify;
}
ul {
  text-align: justify;
}

button {
  padding: 8px 16px;
  margin: 5px;
  background-color: #666;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  width: 25%;
  font-family: Roboto-Bold;
  font-size: 18px;
  
}

footer {
  background-color: #666;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  bottom: 0;
  width: 100%;
  margin-top: auto;
}
